home *** CD-ROM | disk | FTP | other *** search
/ Old Testament Foundatiosn with Philip Yancey / Old Testament Foundatiosn with Philip Yancey - Disc 2.iso / pc / data / m17.dir / 00012.ls < prev    next >
Encoding:
Text File  |  1996-09-09  |  937 b   |  40 lines

  1. on mouseDown
  2.   global gColumn, gRow, gTextField
  3.   puppetSound("MouseDown.aif")
  4.   repeat while the mouseDown
  5.     checkColumn()
  6.   end repeat
  7.   startTimer()
  8.   repeat while the timer < 15
  9.     nothing()
  10.   end repeat
  11.   if (gColumn = 0) or (gRow = 0) then
  12.     set the castNum of sprite 10 to cast "m17"
  13.     updateStage()
  14.   else
  15.     pupSprites(1, 48, 0)
  16.     set myFrame to "place" & gColumn & "." & gRow
  17.     if myFrame = "place1.12" then
  18.       set gTextField to "majorareas.txt"
  19.       showtext()
  20.     end if
  21.     if myFrame = "place2.8" then
  22.       set gTextField to "adamjoseph.txt"
  23.       showtext()
  24.     end if
  25.     if myFrame = "place3.6" then
  26.       set gTextField to "mosessamuel.txt"
  27.       showtext()
  28.     end if
  29.     if myFrame = "place4.7" then
  30.       set gTextField to "unitedkingdom.txt"
  31.       showtext()
  32.     end if
  33.     if myFrame = "place5.6" then
  34.       set gTextField to "divided.txt"
  35.       showtext()
  36.     end if
  37.     go(myFrame)
  38.   end if
  39. end
  40.